--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Commit 2181584f69773e53fecea90c89013af91f724362
Parents : 8bb2168
Author : Mark Qvist <mark@unsigned.io>
Date : 2022-10-22T20:26:24+02:00
Added lxmd entry point
Changes
Diff
diff --git a/setup.py b/setup.py
index 7c799c1..b044de6 100644
--- a/setup.py
+++ b/setup.py
@@ -14,12 +14,17 @@ setuptools.setup(
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/markqvist/lxmf",
- packages=setuptools.find_packages(),
+ packages=["LXMF", "LXMF.Utilities"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
+ entry_points= {
+ 'console_scripts': [
+ 'lxmd=LXMF.Utilities.lxmd:main',
+ ]
+ },
install_requires=['rns>=0.3.17'],
python_requires='>=3.6',
)
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────